Finding ID | Version | Rule ID | IA Controls | Severity |
---|---|---|---|---|
V-256000 | ARST-RT-000140 | SV-256000r882342_rule | Low |
Description |
---|
If multicast traffic is forwarded beyond the intended boundary, it is possible that it can be intercepted by unauthorized or unintended personnel. Administrative scoped multicast addresses are locally assigned and are to be used exclusively by the enterprise network or enclave. Administrative scoped multicast traffic must not cross the enclave perimeter in either direction. Restricting multicast traffic makes it more difficult for a malicious user to access sensitive traffic. Admin-Local scope is encouraged for any multicast traffic within a network intended for network management, as well as for control plane traffic that must reach beyond link-local destinations. |
STIG | Date |
---|---|
Arista MLS EOS 4.2x Router Security Technical Implementation Guide | 2023-01-17 |
Check Text ( C-59676r882340_chk ) |
---|
Review the Arista router configuration and verify that admin-scope multicast traffic is blocked at the external edge. Step 1: Verify the Arista router ACL is configured to deny packets with multicast administratively scoped destination addresses and verify IP access lists are configured. Execute the command "show ip access-lists". ip access-list standard mbac1 10 deny 239.120.10.0/24 20 permit 224.0.0.0/4 exit Step 2: Verify the ACL is applied on the multicast boundary at the appropriate interfaces and verify interfaces are configured. Execute the command "show run int YY". interface vlan 200 multicast ipv4 boundary mbac1 out exit If the Arista router is not configured to establish boundaries for administratively scoped multicast traffic, this is a finding. |
Fix Text (F-59619r882341_fix) |
---|
Step 1: Configure the Arista router ACL to deny packets with multicast administratively scoped destination addresses. router(config)#ip access-list standard mbac1 router(config-std-acl-mbac1)#10 deny 239.120.10.0/24 router(config-std-acl-mbac1)#20 permit 224.0.0.0/4 router(config-std-acl-mbac1)#exit Step 2: Apply the multicast boundary at the appropriate interfaces. router(config)#interface vlan 200 router(config-if-Vl200)#multicast ipv4 boundary mbac1 out router(config-if-Vl200)#exit |